home *** CD-ROM | disk | FTP | other *** search
/ Programmer Power Tools / Programmer Power Tools.iso / editor / j414src.arc / REC.H < prev    next >
C/C++ Source or Header  |  1989-10-10  |  940b  |  28 lines

  1. /***************************************************************************
  2.  * This program is Copyright (C) 1986, 1987, 1988 by Jonathan Payne.  JOVE *
  3.  * is provided to you without charge, and with no warranty.  You may give  *
  4.  * away copies of JOVE, including sources, provided that this notice is    *
  5.  * included in all the files.                                              *
  6.  ***************************************************************************/
  7.  
  8. struct rec_head {
  9.     int        Uid,        /* uid of owner */
  10.             Pid;        /* pid of jove process */
  11.     time_t        UpdTime;    /* last time this was updated */
  12.     int        Nbuffers;    /* number of buffers */
  13.     daddr        FreePtr;    /* position of DFree */
  14. };
  15.  
  16. struct rec_entry {
  17.     char    r_bname[128],
  18.         r_fname[128];
  19.     int    r_nlines,
  20.         r_dotline,    /* so we can really save the context */
  21.         r_dotchar;
  22. };
  23.  
  24. extern void
  25.     SyncRec proto((void)),
  26.     recclose proto((void)),
  27.     FullRecover proto((void));
  28.